home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
STRCAT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1980-01-10
|
384 b
|
11 lines
/*
** append s2 to the end of s1
*/
strcat(s1, s2) char *s1, *s2; {
char *strcat;
strcat = s1;
while(*s1) s1++;
while(*s1++ = *s2++);
return strcat;
}